Thanks George.
I did get it going with the markups you suggested. However, to save on future typing I also tried a version with dxl as the default namespace ie xmlns='
http://www.lotus.com/dxl', and could not get this one going.
From my reading of your note this should be possible as well ?
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns='
http://www.lotus.com/dxl'>
<xsl:output method="html" indent="yes"/>
<xsl:template match="/">
<HTML>
<HEAD>
<TITLE>Blog</TITLE>
</HEAD>
<BODY bgcolor="#ffffff" marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
<xsl:apply-templates select="database"/>
</BODY>
</HTML>
</xsl:template>
<xsl:template match="database">
<TABLE width="100%" cellpadding="0" cellspacing="0" border="0">
<xsl:apply-templates select="document"/>
</TABLE>
</xsl:template>
<xsl:template match="document">
<TR>
<TD border="0">
<A>
<xsl:attribute name="href">
<xsl:value-of select="item[@name='Link']/text"/>
</xsl:attribute>
<xsl:value-of select="item[@name='Title']/text"/>
</A>
<BR>
<xsl:value-of select="item[@name='Description']/text"/>
</BR>
</TD>
</TR>
</xsl:template>
</xsl:stylesheet>